
/* --- Static Project News Styles --- */
.project-news-container {
    width: 100%;
    max-width: 800px; /* Adjust based on your layout preference */
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    padding: 20px;
}

.project-news-header {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.news-item:last-child {
    border-bottom: none;
}

/* Image Thumbnails with Glow Effects */
.news-thumb {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.news-thumb img:hover {
    opacity: 1;
}

/* Specific Border Colors per type */
.news-thumb.type-update {
    border: 2px solid #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.news-thumb.type-shop {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.news-thumb.type-event {
    border: 2px solid #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
}

/* Content Styling */
.news-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.news-date {
    font-size: 12px;
    color: #4caf50; /* Green date color */
    font-weight: 600;
    margin-bottom: 12px;
}

.news-excerpt {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0 0 10px 0;
    max-width: 550px;
}

.read-more {
    font-size: 12px;
    color: #ccc;
    text-decoration: underline;
    text-transform: lowercase;
    transition: color 0.3s;
}

.read-more:hover {
    color: #fff;
}

/* Pagination Styles */
.static-pagination {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.page-btn {
    width: 30px;
    height: 30px;
    background-color: #2b2b2b;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background-color: #444;
    color: #fff;
}

.page-btn.active {
    background-color: #444;
    color: #fff;
}